home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / make-367.lha / make-3.67 / NEWS < prev    next >
Text File  |  1993-05-14  |  15KB  |  426 lines

  1. GNU make NEWS -- history of user-visible changes.  12 April 1993
  2.  
  3. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  4. See the end for copying conditions.
  5.  
  6. Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu.
  7.  
  8. Version 3.66
  9.  
  10. * The `make --version' (or `make -v') now exits immediately after printing
  11.   the version number.
  12.  
  13. Version 3.65
  14.  
  15. * Make now supports long-named members in `ar' archive files.
  16.  
  17. Version 3.64
  18.  
  19. * Make now supports the `+=' syntax for a variable definition which appends
  20.   to the variable's previous value.  See the section `Appending More Text
  21.   to Variables' in the manual for full details.
  22.  
  23. * The new option `--no-print-directory' inhibits the `-w' or
  24.   `--print-directory' feature.  Make turns on `--print-directory'
  25.   automatically if you use `-C' or `--directory', and in sub-makes; some
  26.   users have found this behavior undesirable.
  27.  
  28. * The built-in implicit rules now support the alternative extension
  29.   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
  30.  
  31. Version 3.63
  32.  
  33. * Make now uses a standard GNU `configure' script.  See the new file
  34.   INSTALL for the new (and much simpler) installation procedure.
  35.  
  36. * There is now a shell script to build Make the first time, if you have no
  37.   other `make' program.  `build.sh' is created by `configure'; see README.
  38.  
  39. * GNU Make now completely conforms to the POSIX.2 specification for `make'.
  40.  
  41. * Elements of the `$^' and `$?' automatic variables that are archive
  42.   member references now list only the member name, as in Unix and POSIX.2.
  43.  
  44. * You should no longer ever need to specify the `-w' switch, which prints
  45.   the current directory before and after Make runs.  The `-C' switch to
  46.   change directory, and recursive use of Make, now set `-w' automatically.
  47.  
  48. * Multiple double-colon rules for the same target will no longer have their
  49.   commands run simultaneously under -j, as this could result in the two
  50.   commands trying to change the file at the same time and interfering with
  51.   one another.
  52.  
  53. * The `SHELL' variable is now never taken from the environment.
  54.   Each makefile that wants a shell other than the default (/bin/sh) must
  55.   set SHELL itself.  SHELL is always exported to child processes.
  56.   This change was made for compatibility with POSIX.2.
  57.  
  58. * Make now accepts long options.  There is now an informative usage message
  59.   that tells you what all the options are and what they do.  Try `make --help'.
  60.  
  61. * There are two new directives: `export' and `unexport'.  All variables are
  62.   no longer automatically put into the environments of the commands that
  63.   Make runs.  Instead, only variables specified on the command line or in
  64.   the environment are exported by default.  To export others, use:
  65.     export VARIABLE
  66.   or you can define variables with:
  67.     export VARIABLE = VALUE
  68.   or:
  69.     export VARIABLE := VALUE
  70.   You can use just:
  71.     export
  72.   or:
  73.     .EXPORT_ALL_VARIABLES:
  74.   to get the old behavior.  See the node `Variables/Recursion' in the manual
  75.   for a full description.
  76.  
  77. * The commands from the `.DEFAULT' special target are only applied to
  78.   targets which have no rules at all, not all targets with no commands.
  79.   This change was made for compatibility with Unix make.
  80.  
  81. * All fatal error messages now contain `***', so they are easy to find in
  82.   compilation logs.
  83.  
  84. * Dependency file names like `-lNAME' are now replaced with the actual file
  85.   name found, as with files found by normal directory search (VPATH).
  86.   The library file `libNAME.a' may now be found in the current directory,
  87.   which is checked before VPATH; the standard set of directories (/lib,
  88.   /usr/lib, /usr/local/lib) is now checked last.
  89.   See the node `Libraries/Search' in the manual for full details.
  90.  
  91. * A single `include' directive can now specify more than one makefile to
  92.   include, like this:
  93.     include file1 file2
  94.   You can also use shell file name patterns in an `include' directive:
  95.     include *.mk 
  96.  
  97. * The default directories to search for included makefiles, and for
  98.   libraries specified with `-lNAME', are now set by configuration.
  99.  
  100. * You can now use blanks as well as colons to separate the directories in a
  101.   search path for the `vpath' directive or the `VPATH' variable.
  102.  
  103. * You can now use variables and functions in the left hand side of a
  104.   variable assignment, as in "$(foo)bar = value".
  105.  
  106. * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
  107.   The `MAKE_COMMAND' variable is now defined to the name with which make
  108.   was invoked.
  109.  
  110. * The built-in rules for C++ compilation now use the variables `$(CXX)' and
  111.   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
  112.   problems with shells that cannot have `+' in environment variable names.
  113.  
  114. * The value of a recursively expanded variable is now expanded when putting
  115.   it into the environment for child processes.  This change was made for
  116.   compatibility with Unix make.
  117.  
  118. * A rule with no targets before the `:' is now accepted and ignored.
  119.   This change was made for compatibility with SunOS 4 make.
  120.   We do not recommend that you write your makefiles to take advantage of this.
  121.  
  122. * The `-I' switch can now be used in MAKEFLAGS, and are put there
  123.   automatically just like other switches.
  124.  
  125. Version 3.61
  126.  
  127. * Built-in rules for C++ source files with the `.C' suffix.
  128.   We still recommend that you use `.cc' instead.
  129.  
  130. * If commands are given too many times for a single target,
  131.   the last set given is used, and a warning message is printed.
  132.  
  133. * Error messages about makefiles are in standard GNU error format,
  134.   so C-x ` in Emacs works on them.
  135.  
  136. * Dependencies of pattern rules which contain no % need not actually exist
  137.   if they can be created (just like dependencies which do have a %).
  138.  
  139. Version 3.60
  140.  
  141. * A message is always printed when Make decides there is nothing to be done.
  142.   It used to be that no message was printed for top-level phony targets
  143.   (because "`phony' is up to date" isn't quite right).  Now a different
  144.   message "Nothing to be done for `phony'" is printed in that case.
  145.  
  146. * Archives on AIX now supposedly work.
  147.  
  148. * When the commands specified for .DEFAULT are used to update a target,
  149.   the $< automatic variable is given the same value as $@ for that target.
  150.   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
  151.  
  152. Version 3.59
  153.  
  154. * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
  155.   variables while remaking makefiles, so recursive makes done while remaking
  156.   makefiles will behave properly.
  157.  
  158. * If the special target `.NOEXPORT' is specified in a makefile,
  159.   only variables that came from the environment and variables
  160.   defined on the command line are exported.
  161.  
  162. Version 3.58
  163.  
  164. * Suffix rules may have dependencies (which are ignored).
  165.  
  166. Version 3.57
  167.  
  168. * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
  169.   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
  170.  
  171. Version 3.55
  172.  
  173. * There is now a Unix man page for GNU Make.  It is certainly not a replacement
  174. for the Texinfo manual, but it documents the basic functionality and the
  175. switches.  For full documentation, you should still read the Texinfo manual.
  176. Thanks to Dennis Morse of Stanford University for contributing the initial
  177. version of this.
  178.  
  179. * Variables which are defined by default (e.g., `CC') will no longer be put
  180. into the environment for child processes.  (If these variables are reset by the
  181. environment, makefiles, or the command line, they will still go into the
  182. environment.)
  183.  
  184. * Makefiles which have commands but no dependencies (and thus are always
  185.   considered out of date and in need of remaking), will not be remade (if they
  186.   were being remade only because they were makefiles).  This means that GNU
  187.   Make will no longer go into an infinite loop when fed the makefiles that
  188.   `imake' (necessary to build X Windows) produces.
  189.  
  190. * There is no longer a warning for using the `vpath' directive with an explicit
  191. pathname (instead of a `%' pattern).
  192.  
  193. Version 3.51
  194.  
  195. * When removing intermediate files, only one `rm' command line is printed,
  196. listing all file names.
  197.  
  198. * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
  199. These are the directory-only and file-only versions of `$^' and `$?'.
  200.  
  201. * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
  202. directory if it exists.
  203.  
  204. * The automatic variable `$($/)' is no longer defined.
  205.  
  206. * Leading `+' characters on a command line make that line be executed even
  207. under -n, -t, or -q (as if the line contained `$(MAKE)').
  208.  
  209. * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
  210. only those lines are executed, not their entire rules.
  211. (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
  212.  
  213. Version 3.50
  214.  
  215. * Filenames in rules will now have ~ and ~USER expanded.
  216.  
  217. * The `-p' output has been changed so it can be used as a makefile.
  218. (All information that isn't specified by makefiles is prefaced with comment
  219. characters.)
  220.  
  221. Version 3.49
  222.  
  223. * The % character can be quoted with backslash in implicit pattern rules,
  224. static pattern rules, `vpath' directives, and `patsubst', `filter', and
  225. `filter-out' functions.  A warning is issued if a `vpath' directive's
  226. pattern contains no %.
  227.  
  228. * The `wildcard' variable expansion function now expands ~ and ~USER.
  229.  
  230. * Messages indicating failed commands now contain the target name:
  231.     make: *** [target] Error 1
  232.  
  233. * The `-p' output format has been changed somewhat to look more like
  234. makefile rules and to give all information that Make has about files.
  235.  
  236. Version 3.48
  237.  
  238. Version 3.47
  239.  
  240. * The `-l' switch with no argument removes any previous load-average limit.
  241.  
  242. * When the `-w' switch is in effect, and Make has updated makefiles,
  243. it will write a `Leaving directory' messagfe before re-executing itself.
  244. This makes the `directory change tracking' changes to Emacs's compilation
  245. commands work properly.
  246.  
  247. Version 3.46
  248.  
  249. * The automatic variable `$*' is now defined for explicit rules,
  250. as it is in Unix make.
  251.  
  252. Version 3.45
  253.  
  254. * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
  255. specified without an argument (indicating infinite jobs).
  256. The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
  257.  
  258. * Make no longer checks hashed directories after running commands.
  259. The behavior implemented in 3.41 caused too much slowdown.
  260.  
  261. Version 3.44
  262.  
  263. * A dependency is NOT considered newer than its dependent if
  264. they have the same modification time.  The behavior implemented
  265. in 3.43 conflicts with RCS.
  266.  
  267. Version 3.43
  268.  
  269. * Dependency loops are no longer fatal errors.
  270.  
  271. * A dependency is considered newer than its dependent if
  272. they have the same modification time.
  273.  
  274. Version 3.42
  275.  
  276. * The variables F77 and F77FLAGS are now set by default to $(FC) and
  277. $(FFLAGS).  Makefiles designed for System V make may use these variables in
  278. explicit rules and expect them to be set.  Unfortunately, there is no way to
  279. make setting these affect the Fortran implicit rules unless FC and FFLAGS
  280. are not used (and these are used by BSD make).
  281.  
  282. Version 3.41
  283.  
  284. * Make now checks to see if its hashed directories are changed by commands.
  285. Other makes that hash directories (Sun, 4.3 BSD) don't do this.
  286.  
  287. Version 3.39
  288.  
  289. * The `shell' function no longer captures standard error output.
  290.  
  291. Version 3.32
  292.  
  293. * A file beginning with a dot can be the default target if it also contains
  294. a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
  295.  
  296. Version 3.31
  297.  
  298. * Archive member names are truncated to 15 characters.
  299.  
  300. * Yet more USG stuff.
  301.  
  302. * Minimal support for Microport System V (a 16-bit machine and a
  303. brain-damaged compiler).  This has even lower priority than other USG
  304. support, so if it gets beyond trivial, I will take it out completely.
  305.  
  306. * Revamped default implicit rules (not much visible change).
  307.  
  308. * The -d and -p options can come from the environment.
  309.  
  310. Version 3.30
  311.  
  312. * Improved support for USG and HPUX (hopefully).
  313.  
  314. * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
  315. equivalent to `$(patsubst a,b,$(foo))'.
  316.  
  317. * Defining .DEFAULT with no deps or commands clears its commands.
  318.  
  319. * New default implicit rules for .S (cpp, then as), and .sh (copy and make
  320. executable).  All default implicit rules that use cpp (even indirectly), use
  321. $(CPPFLAGS).
  322.  
  323. Version 3.29
  324.  
  325. * Giving the -j option with no arguments gives you infinite jobs.
  326.  
  327. Version 3.28
  328.  
  329. * New option: "-l LOAD" says not to start any new jobs while others are
  330. running if the load average is not below LOAD (a floating-point number).
  331.  
  332. * There is support in place for implementations of remote command execution
  333. in Make.  See the file remote.c.
  334.  
  335. Version 3.26
  336.  
  337. * No more than 10 directories will be kept open at once.
  338. (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
  339.  
  340. Version 3.25
  341.  
  342. * Archive files will have their modification times recorded before doing
  343. anything that might change their modification times by updating an archive
  344. member.
  345.  
  346. Version 3.20
  347.  
  348. * The `MAKELEVEL' variable is defined for use by makefiles.
  349.  
  350. Version 3.19
  351.  
  352. * The recursion level indications in error messages are much shorter than
  353. they were in version 3.14.
  354.  
  355. Version 3.18
  356.  
  357. * Leading spaces before directives are ignored (as documented).
  358.  
  359. * Included makefiles can determine the default goal target.
  360. (System V Make does it this way, so we are being compatible).
  361.  
  362. Version 3.14.
  363.  
  364. * Variables that are defaults built into Make will not be put in the
  365. environment for children.  This just saves some environment space and,
  366. except under -e, will be transparent to sub-makes.
  367.  
  368. * Error messages from sub-makes will indicate the level of recursion.
  369.  
  370. * Hopefully some speed-up for large directories due to a change in the
  371. directory hashing scheme.
  372.  
  373. * One child will always get a standard input that is usable.
  374.  
  375. * Default makefiles that don't exist will be remade and read in.
  376.  
  377. Version 3.13.
  378.  
  379. * Count parentheses inside expansion function calls so you can
  380. have nested calls: `$(sort $(foreach x,a b,$(x)))'.
  381.  
  382. Version 3.12.
  383.  
  384. * Several bug fixes, including USG and Sun386i support.
  385.  
  386. * `shell' function to expand shell commands a la `
  387.  
  388. * If the `-d' flag is given, version information will be printed.
  389.  
  390. * The `-c' option has been renamed to `-C' for compatibility with tar.
  391.  
  392. * The `-p' option no longer inhibits other normal operation.
  393.  
  394. * Makefiles will be updated and re-read if necessary.
  395.  
  396. * Can now run several commands at once (parallelism), -j option.
  397.  
  398. * Error messages will contain the level of Make recursion, if any.
  399.  
  400. * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
  401. makefiles are read.
  402.  
  403. * A double-colon rule with no dependencies will always have its commands run.
  404. (This is how both the BSD and System V versions Make do it.)
  405.  
  406. Version 3.05
  407.  
  408. ----------------------------------------------------------------------
  409. Copyright information:
  410.  
  411. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  412.  
  413.    Permission is granted to anyone to make or distribute verbatim copies
  414.    of this document as received, in any medium, provided that the
  415.    copyright notice and this permission notice are preserved,
  416.    thus giving the recipient permission to redistribute in turn.
  417.  
  418.    Permission is granted to distribute modified versions
  419.    of this document, or of portions of it,
  420.    under the above conditions, provided also that they
  421.    carry prominent notices stating who last changed them.
  422.  
  423. Local variables:
  424. version-control: never
  425. end:
  426.